home *** CD-ROM | disk | FTP | other *** search
/ Queensland Science Project eChemistry / Queensland Science Project eChemistry (ISBN 9781740818636).iso / ictToolKit / ict / ict.js < prev    next >
Text File  |  2003-05-21  |  2KB  |  55 lines

  1. <!-- 
  2. function PreviousSection(no)
  3. {
  4.   var cursec = currentContent.substr(0,currentContent.indexOf("_"));
  5.   var curtopic = currentContent.substr(currentContent.indexOf("_")+1);
  6.   var pretopic = parseInt(curtopic) - 1;
  7.   if (pretopic == 0){     
  8.     if (no == 1) pretopic = 27; // there're 27 topics in section 1
  9.     if (no == 2) pretopic = 33;    
  10.     if (no == 3) pretopic = 16;    
  11.     if (no == 5) pretopic = 11;
  12.     if (no == 6) pretopic = 6;
  13.     if (no == 7) pretopic = 20;
  14.     if (no == 8) pretopic = 6;
  15.     if (no == 9) pretopic = 26;
  16.     if (no == 10) pretopic = 13;
  17.     if (no == 11) pretopic = 9;
  18.     if (no == 12) pretopic = 11;
  19.     if (no == 13) pretopic = 9;
  20.     if (no == 14) pretopic = 34;
  21.     if (no == 15) pretopic = 6;
  22.     if (no == 16) pretopic = 4;
  23.     if (no == 17) pretopic = 4;    
  24.   }
  25.   var preContent = cursec + "_" + pretopic.toString();
  26.   MM_showHideLayers(currentContent,'','hide',preContent,'','show');
  27.   currentContent = preContent;
  28. }
  29.  
  30. function NextSection(no)
  31. {
  32.   var cursec = currentContent.substr(0,currentContent.indexOf("_"));
  33.   var curtopic = currentContent.substr(currentContent.indexOf("_")+1);
  34.   var nexttopic = parseInt(curtopic) + 1;
  35.   if (no == 1 && nexttopic == 28) nexttopic = 1;
  36.   if (no == 2 && nexttopic == 34) nexttopic = 1;
  37.   if (no == 3 && nexttopic == 17) nexttopic = 1;
  38.   if (no == 5 && nexttopic == 12) nexttopic = 1;  
  39.   if (no == 6 && nexttopic == 7) nexttopic = 1;
  40.   if (no == 7 && nexttopic == 21) nexttopic = 1;
  41.   if (no == 8 && nexttopic == 7) nexttopic = 1;
  42.   if (no == 9 && nexttopic == 27) nexttopic = 1;
  43.   if (no == 10 && nexttopic == 14) nexttopic = 1;
  44.   if (no == 11 && nexttopic == 10) nexttopic = 1;
  45.   if (no == 12 && nexttopic == 12) nexttopic = 1;
  46.   if (no == 13 && nexttopic == 10) nexttopic = 1;
  47.   if (no == 14 && nexttopic == 35) nexttopic = 1;
  48.   if (no == 15 && nexttopic == 7) nexttopic = 1;
  49.   if (no == 16 && nexttopic == 5) nexttopic = 1;
  50.   if (no == 17 && nexttopic == 5) nexttopic = 1;
  51.   var nextContent = cursec + "_" + nexttopic.toString();
  52.   MM_showHideLayers(currentContent,'','hide',nextContent,'','show');
  53.   currentContent = nextContent;  
  54. }
  55. //-->